Fix a typo in the document

Akinori MUSHA 9 years ago
parent
commit
29ea605d76
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/concerns/sortable_events.rb

+ 1 - 1
app/concerns/sortable_events.rb

@@ -33,7 +33,7 @@ module SortableEvents
33 33
 
34 34
         * _descending_ (optional) is a boolean value to determine if comparison should be done in descending (reverse) order, which defaults to `false`.
35 35
 
36
-        Sort keys listed eariler take precedence over ones listed later.  For example, if you want to sort articles by the date and then by the author, specify `[["{{date}}", "time"], "{{author}}"]`.
36
+        Sort keys listed earlier take precedence over ones listed later.  For example, if you want to sort articles by the date and then by the author, specify `[["{{date}}", "time"], "{{author}}"]`.
37 37
 
38 38
         Sorting is done stably, so even if all events have the same set of sort key values the original order is retained.  Also, a special Liquid variable `_index_` is provided, which contains the zero-based index number of each event, which means you can exactly reverse the order of events by specifying `[["{{_index_}}", "number", true]]`.
39 39
       MD